home *** CD-ROM | disk | FTP | other *** search
- gLabelWidth = max( zstring_width( zstring: '$$$/Dialogs/CWeb2PDFPrefsPanel/VerifyStoredImages' ),
- zstring_width( zstring: '$$$/Dialogs/CWeb2PDFPrefsPanel/OpenWeblinks' ) );
-
- gListBoxWidth = max( zstring_width( zstring: '$$$/Dialogs/CWeb2PDFPrefsPanel/OncePerSession' ),
- zstring_width( zstring: '$$$/Dialogs/CWeb2PDFPrefsPanel/Always' ),
- zstring_width( zstring: '$$$/Dialogs/CWeb2PDFPrefsPanel/Never' ),
- zstring_width( zstring: '$$$/Dialogs/CWeb2PDFPrefsPanel/InAcrobat' ),
- zstring_width( zstring: '$$$/Dialogs/CWeb2PDFPrefsPanel/InWebBrowser' ) );
-
- gSecondsWidth = zstring_width( zstring: '$$$/Dialogs/CWeb2PDFPrefsPanel/SkipSecuredPagesSeconds' );
-
- gGapWidth = 10;
-
- dialog( name: '$$$/Dialogs/AddItem', margin_height: 0, margin_width: 0 )
- {
- view( dheight: gPrefsPanelHeight, dwidth: gPrefsPanelWidth, align_children: align_left )
- {
- cluster( name: '$$$/Dialogs/CWeb2PDFPrefsPanel/OpenGroupTitle', align_children: align_left, alignment: align_fill )
- {
- view( align_children: align_row )
- {
- static_text( name: '$$$/Dialogs/CWeb2PDFPrefsPanel/VerifyStoredImages', alignment: align_right, width: gLabelWidth );
- popup( item_id: 'imgs', width: gListBoxWidth );
- }
-
- view( align_children: align_row )
- {
- static_text( name: '$$$/Dialogs/CWeb2PDFPrefsPanel/OpenWeblinks', alignment: align_right, width: gLabelWidth );
- popup( item_id: 'lnks', width: gListBoxWidth );
- }
-
- gap();
-
- check_box( item_id: 'bkmk', name: '$$$/Dialogs/CWeb2PDFPrefsPanel/ShowBookmarks' );
- }
-
- gap();
-
- cluster( name: '$$$/Dialogs/CWeb2PDFPrefsPanel/DownloadGroupTitle', align_children: align_left, alignment: align_fill )
- {
- static_text( name: '$$$/Dialogs/CWeb2PDFPrefsPanel/SkipSecuredPages' );
-
- view( align_children: align_row )
- {
- gap( width: gGapWidth );
- radio( item_id: 'alws', name: '$$$/Dialogs/CWeb2PDFPrefsPanel/SkipSecuredPagesAlways' );
- }
-
- view( align_children: align_row )
- {
- gap( width: gGapWidth );
- radio( item_id: 'aftr', name: '$$$/Dialogs/CWeb2PDFPrefsPanel/SkipSecuredPagesAfter' );
- edit_text( item_id: 'scns', SpinEdit: true, width: max_digit_width() * 4 + 16 );
- static_text( name: '$$$/Dialogs/CWeb2PDFPrefsPanel/SkipSecuredPagesSeconds', alignment: align_left, width: gSecondsWidth );
- }
-
- gap();
-
- button( item_id: 'cnvs', name: '$$$/Dialogs/CWeb2PDFPrefsPanel/ResetConversionSettingsBttn' );
- }
- }
- }
-